#!/usr/bin/env bash

RESULT=`/usr/bin/osascript > /dev/null <<EOT
tell application "Finder"
	set src to POSIX file "/Library/Application Support/Slate Digital/Instrument Editor/Trigger Instrument Editor User Guide.pdf" as alias
	set dst to POSIX file "$HOME/Desktop" as alias
	make new alias file to src at dst
end tell
EOT`
RESULT=`/usr/bin/osascript > /dev/null <<EOT
tell application "Finder"
	set src to POSIX file "/Library/Application Support/Slate Digital/Instrument Editor/Trigger Instrument Editor.app" as alias
	set dst to POSIX file "/Applications" as alias
	make new alias file to src at dst
end tell
EOT`

exit 0
